home *** CD-ROM | disk | FTP | other *** search
- global gHandCursor, gHandMask, gFingerCursor, gFingerMask
-
- on clickButton action
- set spritenum to the clickOn
- set castMember to the member of sprite spritenum
- set Castname to the name of member castMember
- set castNum to the castLibNum of member castMember
- puppetSprite(spritenum, 1)
- repeat while the mouseDown
- if rollOver(spritenum) then
- set the member of sprite spritenum to member (Castname && "dn") of castLib castNum
- updateStage()
- next repeat
- end if
- set the member of sprite spritenum to castMember
- updateStage()
- end repeat
- set the member of sprite spritenum to castMember
- updateStage()
- puppetSprite(spritenum, 0)
- if rollOver(spritenum) then
- do(action)
- end if
- end
-
- on clickButton3 thisSprite, artName
- set castMember to the member of sprite thisSprite
- set Castname to the name of member castMember
- set castNum to the castLibNum of member castMember
- puppetSprite(thisSprite, 1)
- repeat while the mouseDown
- if rollOver(thisSprite) then
- set the member of sprite thisSprite to member (artName && "dn") of castLib castNum
- updateStage()
- next repeat
- end if
- exit repeat
- end repeat
- set the member of sprite thisSprite to member (artName && "on")
- end
-
- on clickButtonNS action
- set thisSprite to the clickOn
- set vMemberNum to the memberNum of sprite thisSprite
- puppetSprite(thisSprite, 1)
- repeat while the mouseDown
- if rollOver(thisSprite) then
- set the memberNum of sprite thisSprite to vMemberNum + 1
- else
- set the memberNum of sprite thisSprite to vMemberNum
- end if
- updateStage()
- end repeat
- set the memberNum of sprite thisSprite to vMemberNum
- updateStage()
- puppetSprite(thisSprite, 0)
- if rollOver(thisSprite) then
- do(action)
- end if
- end
-
- on setPuppetState channelList, type, state
- if type = #c then
- repeat with n = getAt(channelList, 1) to getAt(channelList, 2)
- puppetSprite(n, state)
- end repeat
- else
- repeat with n in channelList
- puppetSprite(n, state)
- end repeat
- end if
- end
-
- on setVisibleState channelList, type, state
- if type = #c then
- repeat with n = getAt(channelList, 1) to getAt(channelList, 2)
- set the visible of sprite n to state
- end repeat
- else
- repeat with n in channelList
- set the visible of sprite n to state
- end repeat
- end if
- end
-
- on setMoveableState channelList, type, state
- if type = #c then
- repeat with n = getAt(channelList, 1) to getAt(channelList, 2)
- set the moveableSprite of sprite n to state
- end repeat
- else
- repeat with n in channelList
- set the moveableSprite of sprite n to state
- end repeat
- end if
- end
-
- on setHandCursor cState, handList
- case cState of
- #on:
- repeat with X in handList
- set the cursor of sprite X to gHandCursor
- end repeat
- #off:
- repeat with X in handList
- set the cursor of sprite X to 0
- end repeat
- end case
- end
-
- on setFingerCursor cState, fingerList
- case cState of
- #on:
- repeat with X in fingerList
- set the cursor of sprite X to gFingerCursor
- end repeat
- #off:
- repeat with X in fingerList
- set the cursor of sprite X to 0
- end repeat
- end case
- end
-